公司地址:茂名市人民南路新村大院22号101
电话:13592986386
发布时间:2024/10/24 17:08:13
server {
listen 80;
server_name localhost;
location / {
root html/default;
index index.html index.htm;
}
}
#set port
server {
listen 8001;
server_name localhost;
location /{
root html/demo;
index index.html index.htm;
}
}